home *** CD-ROM | disk | FTP | other *** search
/ Aminet 12 / Aminet 12 (1996)(GTI - Schatztruhe)[!][Jun 1996].iso / Aminet / dev / e / eiffel.lha / flc / docs / comparable.doc < prev    next >
Encoding:
Text File  |  1996-01-25  |  576 b   |  19 lines

  1.  
  2. -- Objects which may be compared for a total order relation
  3.  
  4. deferred class interface COMPARABLE
  5. exported features
  6.   infix "<" (other:like Current):BOOLEAN
  7.     -- Is current object less than 'other'?
  8.     deferred
  9.   infix "<=" (other:like Current):BOOLEAN
  10.     -- Is current object less than or equal to 'other'?
  11.     deferred
  12.   infix ">" (other:like Current):BOOLEAN
  13.     -- Is current object greater than 'other'?
  14.     deferred
  15.   infix ">=" (other:like Current):BOOLEAN
  16.     -- Is current object greater than or equal to 'other'?
  17.     deferred
  18. end interface -- class 'COMPARABLE'
  19.